home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 476-500 / disk_497 / nlcalc / source / chandler.h < prev    next >
C/C++ Source or Header  |  1992-05-06  |  819b  |  32 lines

  1. /*
  2.  *  CALC      Provides a calculator that opens on the active screen when
  3.  *            you press a specific key sequence.  Otherwise, the program
  4.  *            waits quitely in the background.
  5.  *
  6.  *              Copyright 1989 by Davide P. Cervone.
  7.  *  You may use this code, provided this copyright notice is kept intact.
  8.  */
  9.  
  10. #define PROGRAM     "Calc-Handler"
  11.  
  12.  
  13. /*  The screen title in cMain.c must be set manually if these are changed */
  14.  
  15. #define MAJVERS     3
  16. #define MINVERS     1
  17. #define MINLOADVER  2
  18.  
  19. extern struct IntuitionBase *IntuitionBase;
  20. extern struct GfxBase *GfxBase;
  21. extern struct DOSBase *DOSBase;
  22.  
  23. extern struct Screen *CalcScreen;
  24. extern struct Window *CalcWindow;
  25. extern struct RastPort *rp;
  26.  
  27. extern LONG CalcSMask;
  28. #ifndef SWINDOWS
  29. extern LONG CalcCMask;
  30. #endif
  31. extern struct Task *CalcTask;
  32.